Einhugur Word Plugin for Xojo

Table.ConditionalFormattingFlags Property

Controls which bits of conditional formatting styles on TableStyle are active on the table.

ConditionalFormattingFlags as Integer {Read and Write}

Remarks

A table style can specify up to six different optional conditional formats, for example different formatting for first column, which then can be applied or omitted from individual tables in the document.

Since this is a Flags property then it is bit mask property which means you Or the bit flags together.

You can use one or combine any of the following flags:
EinhugurWord.Table.ConditionalFormatApplyFirstRow
EinhugurWord.Table.ConditionalFormatApplyLastRow
EinhugurWord.Table.ConditionalFormatApplyFirstColumn
EinhugurWord.Table.ConditionalFormatApplyLastColumn
EinhugurWord.Table.ConditionalFormatDontApplyRowBanding
EinhugurWord.Table.ConditionalFormatDontApplyColumnBanding


In Microsoft Word then it would affect this setting:



Notice the reversed meaning on the row and column banding in the flags vs how the Word puts it in the user interface.

See Also

Table Class